home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / text / faqs / gnu-emacs-faq.diff < prev    next >
Encoding:
Internet Message Format  |  1993-05-05  |  9.0 KB

  1. Subject: GNU Emacs FAQ (6/5): Changes
  2. Newsgroups: gnu.emacs.help,comp.emacs,news.answers,comp.answers
  3. From: sbyrnes@rice.edu (Steven Byrnes)
  4. Date: Tue, 4 May 1993 02:52:18 GMT
  5.  
  6. Archive-Name: GNU-Emacs-FAQ/diff
  7. Last-Modified: Sat, 6 Mar 1993 21:13:29 GMT
  8. Last-Posted: Tue, 4 May 1993 02:52:18 GMT
  9.  
  10.                           GNU Emacs FAQ: Changes
  11.  
  12. The latest version of the GNU Emacs FAQ has changed from the previous version.
  13. This article shows the changed text.  The contents of this article are from the
  14. output of `diff -wu2'.  Since the question numbers are generated automatically
  15. and can change, these are stripped from both versions before comparing them.
  16. After generating the differences for each part, they were concatenated and then
  17. edited to remove as much noise as possible.  You can't use this as a patch.
  18.  
  19. -- 
  20. Steven Byrnes <sbyrnes@rice.edu> (and Joe Wells <jbw@cs.bu.edu>)
  21.  
  22. E-mail lpf@uunet.uu.net for details about the League for Programming Freedom.
  23.  
  24. ----------------------------------------------------------------------
  25.  
  26.  
  27. @@ -345,5 +345,5 @@
  28.    can get a PostScript version via anonymous FTP:
  29.    
  30. -    /cs.ubc.ca:src/gnu/manuals_ps/emacs-18.57.ps.Z
  31. +    /cs.ubc.ca:pub/archive/gnu/manuals_ps/emacs-18.57.ps.Z
  32.    
  33.    which site requests that you please CONFINE ANY MAJOR FTPING TO LATE
  34. @@ -441,5 +441,5 @@
  35.      Anonymous FTP:
  36.        /archive.cis.ohio-state.edu:modes/info.el.Z
  37. -      /cs.umn.edu:pub/gnu/emacs/info.el.Z
  38. +      /ftp.uu.net:languages/emacs-lisp/modes/info.el.Z
  39.    
  40.      According to Jay Bourland <jayb@math.stanford.edu>, a version of Dave's
  41. @@ -611,5 +611,5 @@
  42.      it might (or might not) do some good to complain to your news
  43.      administrator, because the most recent FAQ should not expire before
  44. -    March 6, 1993.
  45. +    July 3, 1993.
  46.    
  47.    * Via anonymous FTP.  You can fetch the FAQ articles via anonymous FTP
  48. @@ -693,9 +693,30 @@
  49.  QQQ: When will GNU Emacs 19 be available?
  50.    
  51. -  There are strong indications that Emacs 19 will be available in 1992.  The
  52. -  FSF has recently gone through a spate of copyright disclaimer checking,
  53. -  which is a good sign.
  54. +  Richard Stallman recently (February 19, 1993) posted in gnu.emacs.help
  55. +  the following:
  56.    
  57. -  Lucid has released Lucid GNU Emacs 19.3, which is based on an early
  58. +    People should keep in mind that the successor of Emacs 18 does not
  59. +    come from Lucid.  Its is GNU Emacs 19.  I still can't say exactly when
  60. +    public release is going to be, but we are about to start testing at a
  61. +    number of sites.
  62. +
  63. +    GNU Emacs 19 will support a broad spectrum of machines, like Emacs
  64. +    18.  Ensuring this is the purpose of the testing we are about to do.
  65. +
  66. +    (Please don't volunteer; we have enough pretesters, and if more people
  67. +    offer, dealing with those messages will slow things down.)
  68. +
  69. +    Once we make sure it is indeed working reliably on various different
  70. +    systems, we will have a public beta test release.
  71. +
  72. +    Emacs 19 does support adding properties to ranges of text, and using
  73. +    these to switch fonts.  In the future, the Epoch people will help
  74. +    merge support for variable-width fonts.
  75. +
  76. +    Meanwhile, I have almost finished updating the Emacs Lisp manual.  Its
  77. +    next edition will describe Emacs 19.  There will be an announcement
  78. +    when we know when this edition will be available.
  79. +
  80. +  Lucid has released Lucid GNU Emacs 19.6, which is based on an early
  81.    unreleased version of GNU Emacs 19.  This will be similar to Emacs 19 when
  82.    it finally arrives, but they are not the same.  See question QQQ.
  83. @@ -626,5 +626,34 @@
  84.    
  85.    `etags' takes options just like a prior version of ctags, so your ctags
  86. -  manual (if any) may be useful.  {Can someone send me the details on this?}
  87. +  manual (if any) may be useful.  Eoin Woods, in comp.emacs, writes the
  88. +  following:
  89. +
  90. +    From reading the source (!) the way I use it is:
  91. +
  92. +      for f in `find <args>`
  93. +      do
  94. +         etags -at -f ETAGS $f
  95. +      done
  96. +
  97. +    The "-t" option means to create tags for typedefs as well as functions.
  98. +    The "-a" option tells it to append to the output file. If you have a
  99. +    small number of files (up to a few hundred I think) you can use it
  100. +    direct as:
  101. +
  102. +      etags -f ETAGS file1 file2 file3 ... filen
  103. +
  104. +    The option list is:
  105. +
  106. +            -f file -  Specify the output file name (Default is "TAGS")
  107. +            -a      -  Append to the output file. (Default is to rewrite it)
  108. +            -t      -  Create tags for typedefs (default is just functions)
  109. +            -u      -  Update the output file. Do not re-create it.
  110. +            -w      -  Suppress warnings
  111. +            -v      -  Create vgrind style indexed output (What is vgrind??)
  112. +            -x      -  Create cxref style output (default is Emacs Tags)
  113. +            -e      -  Emacs tags style output (the default the way I 
  114. +                       compile it)
  115. +
  116. +    Having got it working, it works fine!
  117.    
  118.  
  119. @@ -130,5 +130,5 @@
  120.      ;; tex-complete|Sebastian Kremer|sk@thp.Uni-Koeln.DE
  121.      ;; |Minibuffer name completion for editing [La]TeX.
  122. -    ;; |91-03-26|$Revision: 19.4 $|~/packages/tex-complete.el.Z
  123. +    ;; |91-03-26|$Revision: 20.5 $|~/packages/tex-complete.el.Z
  124.    
  125.    Dave Brennan has software which automatically looks for data in this
  126. @@ -298,11 +298,13 @@
  127.      MicroEmacs is a descendant of Microemacs {originally by Dave Conroy?}.
  128.      It is programmable in a BASIC-like language.  Many of the keybindings
  129. -    are different from GNU Emacs.  It is rumored that MicroEmacs can not
  130. -    correctly edit files larger than memory.  The author is Daniel Lawrence
  131. -    <dan@mdbs.uucp, mdbs!dan@ee.ecn.purdue.edu>.  The latest version is 3.11
  132. +    are different from GNU Emacs.  The author is Daniel Lawrence
  133. +    <dan@mdbs.uucp, mdbs!dan@ee.ecn.purdue.edu>.  The latest version is 3.12
  134.      and it is available via anonymous FTP:
  135.    
  136. -      /wuarchive.wustl.edu:/mirrors/msdos/uemacs/
  137. +      /midas.mgmt.purdue.edu:dist/uemacs312/   (outside business hours)
  138.  
  139. +    Version 3.12 includes Windows and Windows NT versions and a DOS
  140. +    protected mode (DMPI) version.
  141. +
  142.    * JOVE
  143.    
  144. @@ -439,9 +441,16 @@
  145.    
  146.    Richard Levitte <levitte@e.kth.se> tells us that there are patches for
  147. -  Emacs 18.57 and 18.58 available via e-mail:
  148. +  Emacs 18.57, 18.58, and 18.59 available via e-mail:
  149.    
  150. -    To: fileserv@ttt.kth.se
  151. +    To: EMACS-FILESERV@e.kth.se
  152.      body: SEND EMACS-1857-PATCHES
  153.        or: SEND EMACS-1858-PATCHES
  154. +      or: SEND EMACS-1859-PATCHES
  155. +
  156. +  or via anonymous ftp at:
  157. +
  158. +      /lucy.merrimack.edu:emacs-1859-patches.share
  159. +
  160. +  The set of patches weighs in at around 2.7 MB.
  161.    
  162.  QQQ: Where can I get modes for Lex, Yacc/Bison, Bourne Shell, Csh, C++,
  163. @@ -517,8 +526,8 @@
  164.    Mailing list: supercite-request@anthem.nlm.nih.gov (for subscriptions)
  165.                  supercite@anthem.nlm.nih.gov (for submissions)
  166. -  Latest version: 2.2
  167. +  Latest version: 2.3
  168.    Anonymous FTP:
  169. -    /archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/sc-2.2.tar.Z
  170. -    /ftp.cme.nist.gov:pub/gnu/sc2.2.tar.Z
  171. +    /archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/sc-2.3.tar.Z
  172. +    /ftp.cme.nist.gov:pub/gnu/sc2.3.tar.Z
  173.    Via e-mail:
  174.      To: library@cme.nist.gov
  175. @@ -532,5 +541,4 @@
  176.    Unofficial test version: 3.14.1
  177.    Anonymous FTP:
  178. -    /cs.umn.edu:pub/gnu/emacs/gnus-3.14.1.tar.Z.
  179.      /aun.uninett.no:pub/gnus-3.14.1.tar.Z
  180.      /wnoc-fuk.wide.ad.jp:pub/GNU/etc/gnus-3.14.1.tar.Z
  181. @@ -710,13 +718,15 @@
  182.                      Matthieu Devin <devin@lucid.com>
  183.                      Harlan Sexton <hbs@lucid.com>
  184. -  Latest released version: 19.3
  185. +  Latest released version: 19.6
  186.    Anonymous FTP:
  187. -    /labrea.stanford.edu:pub/gnu/lucid/lemacs-19.3.tar.Z  (source)
  188. -    /labrea.stanford.edu:pub/gnu/lucid/lemacs-19.3-sun4.tar.Z (Sun4binaries)
  189. +    /labrea.stanford.edu:pub/gnu/lucid/lemacs-19.6.tar.Z  (source)
  190. +    /labrea.stanford.edu:pub/gnu/lucid/lemacs-19.6-sun4.tar.Z (Sun4binaries)
  191.    Newsgroup and mailing lists:
  192.      Bugs:
  193. +      alt.lucid-emacs.bug
  194.        bug-lucid-emacs-request@lucid.com (for subscriptions)
  195.        bug-lucid-emacs@lucid.com (for submissions)
  196.      Help:
  197. +      alt.lucid-emacs.help
  198.        help-lucid-emacs-request@lucid.com (for subscriptions)
  199.        help-lucid-emacs@lucid.com (for submissions)
  200. ----------------------------------------------------------------------
  201. Copyright (C) 1990, 1991, 1992 Joseph Brian Wells
  202. Copyright (C) 1992, 1993 Steven Byrnes
  203.  
  204. This list of frequently asked questions about GNU Emacs with answers
  205. ("FAQ") may be translated into other languages, transformed into other
  206. formats (e.g. Texinfo, Info, WWW, WAIS, etc.), and updated with new
  207. information.  The same conditions apply to any derivative of the FAQ as
  208. apply to the FAQ itself.  Every copy of the FAQ must include this notice
  209. or an approved translation, information on who is currently maintaining
  210. the FAQ and how to contact them (including their e-mail address), and
  211. information on where the latest version of the FAQ is archived (including
  212. FTP information).  The FAQ may be copied and redistributed under these
  213. conditions, except that the FAQ may not be embedded in a larger literary
  214. work unless that work itself allows free copying and redistribution.
  215.  
  216.